CreateScope
Creates a context scope which sets the execution context for all operations executed within a local scope.
Please note, that for the
.docbuilder
file theCDocBuilderContext.CreateScope
method is not used.
Syntax
HRESULT CreateScope([out, retval] I_DOCBUILDER_CONTEXT_SCOPE** result);
Parameters
Parameter | Type | Description |
---|---|---|
result | I_DOCBUILDER_CONTEXT_SCOPE** | The returned context scope. |
Example
COM
CoInitialize(NULL);
IONLYOFFICEDocBuilder* oBuilder = NULL;
IONLYOFFICEDocBuilderContext* oContext = NULL;
IONLYOFFICEDocBuilderContextScope* oScope = NULL;
oBuilder->Initialize();
oBuilder->GetContext(&oContext);
oContext->CreateScope(&oScope);
oBuilder->Dispose();